home *** CD-ROM | disk | FTP | other *** search
/ NOVA - For the NeXT Workstation / NOVA - For the NeXT Workstation.iso / Apps / AudioApps / GISO / Subprocess.h < prev    next >
Text File  |  1992-12-20  |  2KB  |  85 lines

  1. /*----------------------------------------------------------------------------
  2.     Subprocess.h
  3.     
  4.     From Subprocess example by Charles L. Oei
  5.                                     pty support by Joe Freeman
  6.                                     with encouragement from Kristofer Younger
  7.                                     Subprocess Example, Release 2.0
  8.                                     NeXT Computer, Inc.
  9.     
  10.     You may freely copy, distribute and reuse the code in this example.
  11.     NeXT disclaims any warranty of any kind, expressed or implied, as to
  12.     its fitness for any particular use.
  13.  
  14.   This subprocess object sends/receives data to/from any UNIX
  15.   subprocess asynchronously (via vfork/pipe).
  16.   Its delegate, if any, will receive the following messages:
  17.  
  18.     - subprocess:sender done:(int)exitStatus;
  19.         sent when the subprocess exits
  20.   
  21.     - subprocess:sender output:(char *)buffer;
  22.         sent whenever there is data on the standard output pipe;
  23.         buffer is only valid until next call
  24.  
  25.     - subprocess:sender stderrOutput:(char *)buffer;
  26.         sent whenever there is data on the standard error pipe;
  27.         buffer is only valid until next call.
  28.  
  29.     - subprocess:sender error:(const char *)errorString;
  30.         sent when an error occurs;
  31.         if it ever happens, it's usually only at startup time
  32.  
  33.     REVISIONS
  34.     Subprocess.h,v
  35.  * Revision 1.1  1992/07/04  03:17:22  nwc
  36.  * Initial revision
  37.  *
  38. ----------------------------------------------------------------------------*/
  39. #import <stdio.h>
  40. #import <objc/Object.h>
  41.  
  42. #define SUBPROCESS_STOPPED        -1
  43. #define SUBPROCESS_SIGNALED        -2
  44.  
  45. @interface Subprocess:Object
  46. {    
  47.    FILE        *fpToChild;
  48.    FILE        *fpFromChild;
  49.    int        fromChild;
  50.    int        stderrFromChild;
  51.    int        childPid;
  52.    id        delegate;
  53.    char        outputBuffer[BUFSIZ];
  54.    int        outputBufferLen;
  55.    int        stderrBufferLen;
  56.    char        stderrBuffer[BUFSIZ];
  57.    BOOL        paused;
  58.    BOOL        running;
  59. }
  60.  
  61. - init:(const char *)subprocessString;
  62. - init:(const char *)subprocessString withDelegate:theDelegate;
  63. - setDelegate:anObject;
  64. - delegate;
  65. - send:(const char *)string withNewline:(BOOL)wantNewline;
  66. - send:(const char *)string;
  67. - (int)pid;
  68. - (BOOL)isPaused;
  69. - pause:sender;
  70. - resume:sender;
  71. - (BOOL)isRunning;
  72. - terminate:sender;
  73. - terminateInput;
  74.  
  75. @end
  76.  
  77. @interface Object(SubprocessDelegate)
  78.  
  79. - subprocess:sender done:(int)exitStatus;
  80. - subprocess:sender output:(char *)buffer;
  81. - subprocess:sender stderrOutput:(char *)buffer;
  82. - subprocess:sender error:(const char *)errorString;
  83.  
  84. @end
  85.